100
How can I change the group's caption

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
var_Group = oExplorerBar.Groups.Add("Group 1")
	var_Group.AddItem("Item 1")
	var_Group.AddItem("Item 2")
	var_Group.AddItem("Item 3")
	var_Group.Caption = "new caption"
	var_Group.Expanded = true

99
How can I get the number or count of items in a group

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
var_Group = oExplorerBar.Groups.Add("Group 1")
	var_Group.AddItem("Item 1")
	var_Group.AddItem("Item 2")
	var_Group.AddItem("Item 3")
	var_Group.AddItem(Str(var_Group.Count))
	var_Group.Expanded = true

98
How can I access an item in a group

local oExplorerBar,var_Group,var_Item

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
var_Group = oExplorerBar.Groups.Add("Group 1")
	var_Group.AddItem("Item 1")
	var_Group.AddItem("Item 2")
	var_Group.AddItem("Item 3")
	// var_Group.Item(1).Bold = true
	var_Item = var_Group.Item(1)
	with (oExplorerBar)
		TemplateDef = [dim var_Item]
		TemplateDef = var_Item
		Template = [var_Item.Bold = True]
	endwith
	var_Group.Expanded = true

97
How can I remove all items, from a group
local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
var_Group = oExplorerBar.Groups.Add("Group 1")
	var_Group.AddItem("Item 1")
	var_Group.AddItem("Item 2")
	var_Group.AddItem("Item 3")
	var_Group.Clear()
	var_Group.Expanded = true

96
How can I remove an item, from a group

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
var_Group = oExplorerBar.Groups.Add("Group 1")
	var_Group.AddItem("Item 1")
	var_Group.AddItem("Item 2")
	var_Group.AddItem("Item 3")
	var_Group.RemoveItem(1)
	var_Group.Expanded = true

95
How can I add a new item to a group

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
var_Group = oExplorerBar.Groups.Add("Group 1")
	var_Group.AddItem("Item 1",1)
	var_Group.Expanded = true

94
How can I add a new item to a group

local oExplorerBar

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Groups.Add("Group 1").AddItem("Item 1")

93
How can I add a new item to a group

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
var_Group = oExplorerBar.Groups.Add("Group 1")
	var_Group.AddItem("Item 1")
	var_Group.Expanded = true

92
How can I get the groups as they are listed
local oExplorerBar,var_Groups

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
var_Groups = oExplorerBar.Groups
	var_Groups.Add("Group 1")
	var_Groups.Add("Group 2")
	var_Groups.Add("Group 3")

91
How can I access a group by position

local oExplorerBar,var_Group,var_Groups

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
var_Groups = oExplorerBar.Groups
	var_Groups.Add("Group 1")
	var_Groups.Add("Group 2")
	var_Groups.Add("Group 3")
	// var_Groups.ItemByPos(1).Bold = true
	var_Group = var_Groups.ItemByPos(1)
	with (oExplorerBar)
		TemplateDef = [dim var_Group]
		TemplateDef = var_Group
		Template = [var_Group.Bold = True]
	endwith

90
How can I access a group

local oExplorerBar,var_Group,var_Groups

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
var_Groups = oExplorerBar.Groups
	var_Groups.Add("Group 1")
	var_Groups.Add("Group 2")
	var_Groups.Add("Group 3")
	// var_Groups.Item(1).Bold = true
	var_Group = var_Groups.Item(1)
	with (oExplorerBar)
		TemplateDef = [dim var_Group]
		TemplateDef = var_Group
		Template = [var_Group.Bold = True]
	endwith

89
How can I clear the groups collection
local oExplorerBar,var_Groups

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
var_Groups = oExplorerBar.Groups
	var_Groups.Add("Group 1")
	var_Groups.Add("Group 2")
	var_Groups.Add("Group 3")
	var_Groups.Clear()

88
How can I remove a group

local oExplorerBar,var_Groups

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
var_Groups = oExplorerBar.Groups
	var_Groups.Add("Group 1")
	var_Groups.Add("Group 2")
	var_Groups.Add("Group 3")
	var_Groups.Remove(1)

87
How can I add a group

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
var_Group = oExplorerBar.Groups.Add("Group 1")
	var_Group.AddItem("Item 1")
	var_Group.AddItem("Item 2")
	var_Group.Expanded = true

86
How do I count the number of groups
local oExplorerBar,var_Groups

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
var_Groups = oExplorerBar.Groups
	var_Groups.Add("Group 1")
	var_Groups.Add("Group 2")
	var_Groups.Add("Group 3")
	var_Groups.Add(Str(var_Groups.Count))

85
How can I display pictures with a custom size, instead icons, in the shortcut bar

local oExplorerBar,var_Group,var_Group1,var_Group2,var_Group3

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.ShowShortcutBar = true
// oExplorerBar.Groups.Add("Group 1").Shortcut = "Set 1"
var_Group = oExplorerBar.Groups.Add("Group 1")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.Shortcut = "Set 1"]
endwith
// oExplorerBar.Groups.Add("Group 2").Shortcut = "Set 1"
var_Group1 = oExplorerBar.Groups.Add("Group 2")
with (oExplorerBar)
	TemplateDef = [dim var_Group1]
	TemplateDef = var_Group1
	Template = [var_Group1.Shortcut = "Set 1"]
endwith
// oExplorerBar.Groups.Add("Group 3").Shortcut = "Set 2"
var_Group2 = oExplorerBar.Groups.Add("Group 3")
with (oExplorerBar)
	TemplateDef = [dim var_Group2]
	TemplateDef = var_Group2
	Template = [var_Group2.Shortcut = "Set 2"]
endwith
// oExplorerBar.Groups.Add("Group 4").Shortcut = "Set 2"
var_Group3 = oExplorerBar.Groups.Add("Group 4")
with (oExplorerBar)
	TemplateDef = [dim var_Group3]
	TemplateDef = var_Group3
	Template = [var_Group3.Shortcut = "Set 2"]
endwith
oExplorerBar.Template = [ShortcutPicture("Set 1") = Me.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")] // oExplorerBar.ShortcutPicture("Set 1") = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oExplorerBar.Template = [ShortcutPicture("Set 2") = Me.ExecuteTemplate("loadpicture(`c:\exontrol\images\auction.gif`)")] // oExplorerBar.ShortcutPicture("Set 2") = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\auction.gif`)")
oExplorerBar.ShortcutPictureWidth = 32
oExplorerBar.ShortcutPictureHeight = 32
oExplorerBar.ShortcutBarHeight = 32

84
How can I display pictures instead icons, in the shortcut bar

local oExplorerBar,var_Group,var_Group1,var_Group2,var_Group3

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.ShowShortcutBar = true
// oExplorerBar.Groups.Add("Group 1").Shortcut = "Set 1"
var_Group = oExplorerBar.Groups.Add("Group 1")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.Shortcut = "Set 1"]
endwith
// oExplorerBar.Groups.Add("Group 2").Shortcut = "Set 1"
var_Group1 = oExplorerBar.Groups.Add("Group 2")
with (oExplorerBar)
	TemplateDef = [dim var_Group1]
	TemplateDef = var_Group1
	Template = [var_Group1.Shortcut = "Set 1"]
endwith
// oExplorerBar.Groups.Add("Group 3").Shortcut = "Set 2"
var_Group2 = oExplorerBar.Groups.Add("Group 3")
with (oExplorerBar)
	TemplateDef = [dim var_Group2]
	TemplateDef = var_Group2
	Template = [var_Group2.Shortcut = "Set 2"]
endwith
// oExplorerBar.Groups.Add("Group 4").Shortcut = "Set 2"
var_Group3 = oExplorerBar.Groups.Add("Group 4")
with (oExplorerBar)
	TemplateDef = [dim var_Group3]
	TemplateDef = var_Group3
	Template = [var_Group3.Shortcut = "Set 2"]
endwith
oExplorerBar.Template = [ShortcutPicture("Set 1") = Me.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")] // oExplorerBar.ShortcutPicture("Set 1") = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oExplorerBar.Template = [ShortcutPicture("Set 2") = Me.ExecuteTemplate("loadpicture(`c:\exontrol\images\auction.gif`)")] // oExplorerBar.ShortcutPicture("Set 2") = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\auction.gif`)")
oExplorerBar.ShortcutBarHeight = 44

83
How can I change the visual appearance of the shortcut bar, using EBN files

local oExplorerBar,var_Group,var_Group1,var_Group2,var_Group3

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oExplorerBar.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
// oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
var_Group = oExplorerBar.Groups.Add("Group 1")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
var_Group1 = oExplorerBar.Groups.Add("Group 2")
with (oExplorerBar)
	TemplateDef = [dim var_Group1]
	TemplateDef = var_Group1
	Template = [var_Group1.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
var_Group2 = oExplorerBar.Groups.Add("Group 3")
with (oExplorerBar)
	TemplateDef = [dim var_Group2]
	TemplateDef = var_Group2
	Template = [var_Group2.Shortcut = "Set <img>2</img>"]
endwith
// oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
var_Group3 = oExplorerBar.Groups.Add("Group 4")
with (oExplorerBar)
	TemplateDef = [dim var_Group3]
	TemplateDef = var_Group3
	Template = [var_Group3.Shortcut = "Set <img>2</img>"]
endwith
oExplorerBar.ShortcutResizeBackColor = 0x2000000
oExplorerBar.ShortcutBarSelCaptionBackColor = 0x1000000
oExplorerBar.ShortcutBarSelBackColor = 0x1000000
oExplorerBar.BackColorGroup = 0x1000000

82
How can I change the visual appearance of the separator between groups and the shortcut bar, using your EBN files

local oExplorerBar,var_Group,var_Group1,var_Group2,var_Group3

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
// oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
var_Group = oExplorerBar.Groups.Add("Group 1")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
var_Group1 = oExplorerBar.Groups.Add("Group 2")
with (oExplorerBar)
	TemplateDef = [dim var_Group1]
	TemplateDef = var_Group1
	Template = [var_Group1.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
var_Group2 = oExplorerBar.Groups.Add("Group 3")
with (oExplorerBar)
	TemplateDef = [dim var_Group2]
	TemplateDef = var_Group2
	Template = [var_Group2.Shortcut = "Set <img>2</img>"]
endwith
// oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
var_Group3 = oExplorerBar.Groups.Add("Group 4")
with (oExplorerBar)
	TemplateDef = [dim var_Group3]
	TemplateDef = var_Group3
	Template = [var_Group3.Shortcut = "Set <img>2</img>"]
endwith
oExplorerBar.ShortcutResizeBackColor = 0x1000000
oExplorerBar.ExpandShortcutCount = 1

81
How do I change the background color of the separator between groups and the shortcut bar

local oExplorerBar,var_Group,var_Group1,var_Group2,var_Group3

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
// oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
var_Group = oExplorerBar.Groups.Add("Group 1")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
var_Group1 = oExplorerBar.Groups.Add("Group 2")
with (oExplorerBar)
	TemplateDef = [dim var_Group1]
	TemplateDef = var_Group1
	Template = [var_Group1.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
var_Group2 = oExplorerBar.Groups.Add("Group 3")
with (oExplorerBar)
	TemplateDef = [dim var_Group2]
	TemplateDef = var_Group2
	Template = [var_Group2.Shortcut = "Set <img>2</img>"]
endwith
// oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
var_Group3 = oExplorerBar.Groups.Add("Group 4")
with (oExplorerBar)
	TemplateDef = [dim var_Group3]
	TemplateDef = var_Group3
	Template = [var_Group3.Shortcut = "Set <img>2</img>"]
endwith
oExplorerBar.ShortcutResizeBackColor = 0xff
oExplorerBar.ExpandShortcutCount = 1

80
How can I change the visual appearance of the shortcut bar, using your EBN files

local oExplorerBar,var_Group,var_Group1,var_Group2,var_Group3

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
// oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
var_Group = oExplorerBar.Groups.Add("Group 1")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
var_Group1 = oExplorerBar.Groups.Add("Group 2")
with (oExplorerBar)
	TemplateDef = [dim var_Group1]
	TemplateDef = var_Group1
	Template = [var_Group1.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
var_Group2 = oExplorerBar.Groups.Add("Group 3")
with (oExplorerBar)
	TemplateDef = [dim var_Group2]
	TemplateDef = var_Group2
	Template = [var_Group2.Shortcut = "Set <img>2</img>"]
endwith
// oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
var_Group3 = oExplorerBar.Groups.Add("Group 4")
with (oExplorerBar)
	TemplateDef = [dim var_Group3]
	TemplateDef = var_Group3
	Template = [var_Group3.Shortcut = "Set <img>2</img>"]
endwith
oExplorerBar.ShortcutBarSelCaptionBackColor = 0x1000000
oExplorerBar.ExpandShortcutCount = 1

79
How do I change the selection background color in the shortcut bar

local oExplorerBar,var_Group,var_Group1,var_Group2,var_Group3

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
// oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
var_Group = oExplorerBar.Groups.Add("Group 1")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
var_Group1 = oExplorerBar.Groups.Add("Group 2")
with (oExplorerBar)
	TemplateDef = [dim var_Group1]
	TemplateDef = var_Group1
	Template = [var_Group1.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
var_Group2 = oExplorerBar.Groups.Add("Group 3")
with (oExplorerBar)
	TemplateDef = [dim var_Group2]
	TemplateDef = var_Group2
	Template = [var_Group2.Shortcut = "Set <img>2</img>"]
endwith
// oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
var_Group3 = oExplorerBar.Groups.Add("Group 4")
with (oExplorerBar)
	TemplateDef = [dim var_Group3]
	TemplateDef = var_Group3
	Template = [var_Group3.Shortcut = "Set <img>2</img>"]
endwith
oExplorerBar.ShortcutBarSelCaptionBackColor = 0xff
oExplorerBar.ExpandShortcutCount = 1

78
How can I change the visual appearance of the shortcut bar, using your EBN files

local oExplorerBar,var_Group,var_Group1,var_Group2,var_Group3

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
// oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
var_Group = oExplorerBar.Groups.Add("Group 1")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
var_Group1 = oExplorerBar.Groups.Add("Group 2")
with (oExplorerBar)
	TemplateDef = [dim var_Group1]
	TemplateDef = var_Group1
	Template = [var_Group1.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
var_Group2 = oExplorerBar.Groups.Add("Group 3")
with (oExplorerBar)
	TemplateDef = [dim var_Group2]
	TemplateDef = var_Group2
	Template = [var_Group2.Shortcut = "Set <img>2</img>"]
endwith
// oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
var_Group3 = oExplorerBar.Groups.Add("Group 4")
with (oExplorerBar)
	TemplateDef = [dim var_Group3]
	TemplateDef = var_Group3
	Template = [var_Group3.Shortcut = "Set <img>2</img>"]
endwith
oExplorerBar.ShortcutBarSelBackColor = 0x1000000

77
How do I change the selection background color in the shortcut bar

local oExplorerBar,var_Group,var_Group1,var_Group2,var_Group3

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
// oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
var_Group = oExplorerBar.Groups.Add("Group 1")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
var_Group1 = oExplorerBar.Groups.Add("Group 2")
with (oExplorerBar)
	TemplateDef = [dim var_Group1]
	TemplateDef = var_Group1
	Template = [var_Group1.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
var_Group2 = oExplorerBar.Groups.Add("Group 3")
with (oExplorerBar)
	TemplateDef = [dim var_Group2]
	TemplateDef = var_Group2
	Template = [var_Group2.Shortcut = "Set <img>2</img>"]
endwith
// oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
var_Group3 = oExplorerBar.Groups.Add("Group 4")
with (oExplorerBar)
	TemplateDef = [dim var_Group3]
	TemplateDef = var_Group3
	Template = [var_Group3.Shortcut = "Set <img>2</img>"]
endwith
oExplorerBar.ShortcutBarSelBackColor = 0xff

76
How can I change the visual appearance of the shortcut bar, using your EBN files

local oExplorerBar,var_Group,var_Group1,var_Group2,var_Group3

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
// oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
var_Group = oExplorerBar.Groups.Add("Group 1")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
var_Group1 = oExplorerBar.Groups.Add("Group 2")
with (oExplorerBar)
	TemplateDef = [dim var_Group1]
	TemplateDef = var_Group1
	Template = [var_Group1.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
var_Group2 = oExplorerBar.Groups.Add("Group 3")
with (oExplorerBar)
	TemplateDef = [dim var_Group2]
	TemplateDef = var_Group2
	Template = [var_Group2.Shortcut = "Set <img>2</img>"]
endwith
// oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
var_Group3 = oExplorerBar.Groups.Add("Group 4")
with (oExplorerBar)
	TemplateDef = [dim var_Group3]
	TemplateDef = var_Group3
	Template = [var_Group3.Shortcut = "Set <img>2</img>"]
endwith
oExplorerBar.ShortcutBarBackColor = 0x1000000

75
How do I change the background color in the shortcut bar

local oExplorerBar,var_Group,var_Group1,var_Group2,var_Group3

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
// oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
var_Group = oExplorerBar.Groups.Add("Group 1")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
var_Group1 = oExplorerBar.Groups.Add("Group 2")
with (oExplorerBar)
	TemplateDef = [dim var_Group1]
	TemplateDef = var_Group1
	Template = [var_Group1.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
var_Group2 = oExplorerBar.Groups.Add("Group 3")
with (oExplorerBar)
	TemplateDef = [dim var_Group2]
	TemplateDef = var_Group2
	Template = [var_Group2.Shortcut = "Set <img>2</img>"]
endwith
// oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
var_Group3 = oExplorerBar.Groups.Add("Group 4")
with (oExplorerBar)
	TemplateDef = [dim var_Group3]
	TemplateDef = var_Group3
	Template = [var_Group3.Shortcut = "Set <img>2</img>"]
endwith
oExplorerBar.ShortcutBarBackColor = 0xff

74
How can I programmatically change expand or collapse the shortcut bar

local oExplorerBar,var_Group,var_Group1,var_Group2,var_Group3

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
// oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
var_Group = oExplorerBar.Groups.Add("Group 1")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
var_Group1 = oExplorerBar.Groups.Add("Group 2")
with (oExplorerBar)
	TemplateDef = [dim var_Group1]
	TemplateDef = var_Group1
	Template = [var_Group1.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
var_Group2 = oExplorerBar.Groups.Add("Group 3")
with (oExplorerBar)
	TemplateDef = [dim var_Group2]
	TemplateDef = var_Group2
	Template = [var_Group2.Shortcut = "Set <img>2</img>"]
endwith
// oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
var_Group3 = oExplorerBar.Groups.Add("Group 4")
with (oExplorerBar)
	TemplateDef = [dim var_Group3]
	TemplateDef = var_Group3
	Template = [var_Group3.Shortcut = "Set <img>2</img>"]
endwith
oExplorerBar.ExpandShortcutCount = 1

73
How do I change the icon for the expanding or collapsing the shortcut bar

local oExplorerBar,var_Group,var_Group1,var_Group2,var_Group3

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
// oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
var_Group = oExplorerBar.Groups.Add("Group 1")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
var_Group1 = oExplorerBar.Groups.Add("Group 2")
with (oExplorerBar)
	TemplateDef = [dim var_Group1]
	TemplateDef = var_Group1
	Template = [var_Group1.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
var_Group2 = oExplorerBar.Groups.Add("Group 3")
with (oExplorerBar)
	TemplateDef = [dim var_Group2]
	TemplateDef = var_Group2
	Template = [var_Group2.Shortcut = "Set <img>2</img>"]
endwith
// oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
var_Group3 = oExplorerBar.Groups.Add("Group 4")
with (oExplorerBar)
	TemplateDef = [dim var_Group3]
	TemplateDef = var_Group3
	Template = [var_Group3.Shortcut = "Set <img>2</img>"]
endwith
oExplorerBar.ExpandShortcutImage = 3

72
How can I enable or disable resizing the shortcut bar

local oExplorerBar,var_Group,var_Group1,var_Group2,var_Group3

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
// oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
var_Group = oExplorerBar.Groups.Add("Group 1")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
var_Group1 = oExplorerBar.Groups.Add("Group 2")
with (oExplorerBar)
	TemplateDef = [dim var_Group1]
	TemplateDef = var_Group1
	Template = [var_Group1.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
var_Group2 = oExplorerBar.Groups.Add("Group 3")
with (oExplorerBar)
	TemplateDef = [dim var_Group2]
	TemplateDef = var_Group2
	Template = [var_Group2.Shortcut = "Set <img>2</img>"]
endwith
// oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
var_Group3 = oExplorerBar.Groups.Add("Group 4")
with (oExplorerBar)
	TemplateDef = [dim var_Group3]
	TemplateDef = var_Group3
	Template = [var_Group3.Shortcut = "Set <img>2</img>"]
endwith
oExplorerBar.ExpandShortcutCount = 1
oExplorerBar.AllowResizeShortcutBar = false

71
How do I specify the height of the shortcut bar

local oExplorerBar,var_Group,var_Group1,var_Group2,var_Group3

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
// oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
var_Group = oExplorerBar.Groups.Add("Group 1")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
var_Group1 = oExplorerBar.Groups.Add("Group 2")
with (oExplorerBar)
	TemplateDef = [dim var_Group1]
	TemplateDef = var_Group1
	Template = [var_Group1.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
var_Group2 = oExplorerBar.Groups.Add("Group 3")
with (oExplorerBar)
	TemplateDef = [dim var_Group2]
	TemplateDef = var_Group2
	Template = [var_Group2.Shortcut = "Set <img>2</img>"]
endwith
// oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
var_Group3 = oExplorerBar.Groups.Add("Group 4")
with (oExplorerBar)
	TemplateDef = [dim var_Group3]
	TemplateDef = var_Group3
	Template = [var_Group3.Shortcut = "Set <img>2</img>"]
endwith
oExplorerBar.ExpandShortcutCount = 1
oExplorerBar.ShortcutBarHeight = 16

70
How do I select a shortcut

local oExplorerBar,var_Group,var_Group1,var_Group2,var_Group3

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
// oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
var_Group = oExplorerBar.Groups.Add("Group 1")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
var_Group1 = oExplorerBar.Groups.Add("Group 2")
with (oExplorerBar)
	TemplateDef = [dim var_Group1]
	TemplateDef = var_Group1
	Template = [var_Group1.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
var_Group2 = oExplorerBar.Groups.Add("Group 3")
with (oExplorerBar)
	TemplateDef = [dim var_Group2]
	TemplateDef = var_Group2
	Template = [var_Group2.Shortcut = "Set <img>2</img>"]
endwith
// oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
var_Group3 = oExplorerBar.Groups.Add("Group 4")
with (oExplorerBar)
	TemplateDef = [dim var_Group3]
	TemplateDef = var_Group3
	Template = [var_Group3.Shortcut = "Set <img>2</img>"]
endwith
oExplorerBar.ExpandShortcutCount = 1
oExplorerBar.SelectShortcut = "Set <img>2</img>"

69
How do I show or hide the shortcut bar

local oExplorerBar,var_Group,var_Group1,var_Group2,var_Group3

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
// oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
var_Group = oExplorerBar.Groups.Add("Group 1")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
var_Group1 = oExplorerBar.Groups.Add("Group 2")
with (oExplorerBar)
	TemplateDef = [dim var_Group1]
	TemplateDef = var_Group1
	Template = [var_Group1.Shortcut = "Set <img>1</img>"]
endwith
// oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
var_Group2 = oExplorerBar.Groups.Add("Group 3")
with (oExplorerBar)
	TemplateDef = [dim var_Group2]
	TemplateDef = var_Group2
	Template = [var_Group2.Shortcut = "Set <img>2</img>"]
endwith
// oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
var_Group3 = oExplorerBar.Groups.Add("Group 4")
with (oExplorerBar)
	TemplateDef = [dim var_Group3]
	TemplateDef = var_Group3
	Template = [var_Group3.Shortcut = "Set <img>2</img>"]
endwith
oExplorerBar.ExpandShortcutCount = 1

68
How do I access the groups collection
local oExplorerBar

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Groups.Add("Group 1")

67
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions, after the user clicks it

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Template = [FormatAnchor(False) = "<b><u><fgcolor=FF0000> </fgcolor></u></b>"] // oExplorerBar.FormatAnchor(false) = "<b><u><fgcolor=FF0000> </fgcolor></u></b>"
oExplorerBar.HighlightItemType = 0
oExplorerBar.HandCursor = false
// oExplorerBar.Groups.Add("Group <a1><b>1</b></a>").CaptionFormat = 1
var_Group = oExplorerBar.Groups.Add("Group <a1><b>1</b></a>")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.CaptionFormat = 1]
endwith

66
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions, after the user clicks it

local oExplorerBar,var_Group,var_Item

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Template = [FormatAnchor(False) = "<b><u><fgcolor=FF0000> </fgcolor></u></b>"] // oExplorerBar.FormatAnchor(false) = "<b><u><fgcolor=FF0000> </fgcolor></u></b>"
oExplorerBar.HighlightItemType = 0
oExplorerBar.HandCursor = false
var_Group = oExplorerBar.Groups.Add("Group 1")
	// var_Group.AddItem("Item <a1><b>1</b></a>").CaptionFormat = 1
	var_Item = var_Group.AddItem("Item <a1><b>1</b></a>")
	with (oExplorerBar)
		TemplateDef = [dim var_Item]
		TemplateDef = var_Item
		Template = [var_Item.CaptionFormat = 1]
	endwith
	var_Group.Expanded = true

65
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.HighlightItemType = 0
oExplorerBar.HandCursor = false
oExplorerBar.Template = [FormatAnchor(True) = "<b><u><fgcolor=FF0000> </fgcolor></u></b>"] // oExplorerBar.FormatAnchor(true) = "<b><u><fgcolor=FF0000> </fgcolor></u></b>"
// oExplorerBar.Groups.Add("Group <a1><b>1</b></a>").CaptionFormat = 1
var_Group = oExplorerBar.Groups.Add("Group <a1><b>1</b></a>")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.CaptionFormat = 1]
endwith

64
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions

local oExplorerBar,var_Group,var_Item

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.HighlightItemType = 0
oExplorerBar.HandCursor = false
oExplorerBar.Template = [FormatAnchor(True) = "<b><u><fgcolor=FF0000> </fgcolor></u></b>"] // oExplorerBar.FormatAnchor(true) = "<b><u><fgcolor=FF0000> </fgcolor></u></b>"
var_Group = oExplorerBar.Groups.Add("Group 1")
	// var_Group.AddItem("Item <a1><b>1</b></a>").CaptionFormat = 1
	var_Item = var_Group.AddItem("Item <a1><b>1</b></a>")
	with (oExplorerBar)
		TemplateDef = [dim var_Item]
		TemplateDef = var_Item
		Template = [var_Item.CaptionFormat = 1]
	endwith
	var_Group.Expanded = true

63
How can I add several pictures and icons to an item

local oExplorerBar,var_Group,var_Item

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.Template = [HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"] // oExplorerBar.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"
oExplorerBar.Template = [HTMLPicture("pic2") = "c:\exontrol\images\auction.gif"] // oExplorerBar.HTMLPicture("pic2") = "c:\exontrol\images\auction.gif"
var_Group = oExplorerBar.Groups.Add("Group 1")
	var_Group.ItemHeight = 48
	var_Item = var_Group.AddItem("<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>")
		var_Item.Image = 2
		var_Item.CaptionFormat = 1
	var_Group.Expanded = true

62
How can I add several pictures and icons to an item
local oExplorerBar,var_Group,var_Item

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.Template = [HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"] // oExplorerBar.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"
oExplorerBar.Template = [HTMLPicture("pic2") = "c:\exontrol\images\auction.gif"] // oExplorerBar.HTMLPicture("pic2") = "c:\exontrol\images\auction.gif"
var_Group = oExplorerBar.Groups.Add("Group 1")
	var_Group.ItemHeight = 48
	var_Item = var_Group.AddItem("<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>")
		var_Item.Image = 2
		var_Item.CaptionFormat = 1
	var_Group.Expanded = true

61
How can I add several pictures to an item

local oExplorerBar,var_Group,var_Item

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Template = [HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"] // oExplorerBar.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"
oExplorerBar.Template = [HTMLPicture("pic2") = "c:\exontrol\images\auction.gif"] // oExplorerBar.HTMLPicture("pic2") = "c:\exontrol\images\auction.gif"
var_Group = oExplorerBar.Groups.Add("Group 1")
	var_Group.ItemHeight = 48
	// var_Group.AddItem("<img>pic1</img> text <img>pic2</img>").CaptionFormat = 1
	var_Item = var_Group.AddItem("<img>pic1</img> text <img>pic2</img>")
	with (oExplorerBar)
		TemplateDef = [dim var_Item]
		TemplateDef = var_Item
		Template = [var_Item.CaptionFormat = 1]
	endwith
	var_Group.Expanded = true

60
How can I add several pictures to a group

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.Template = [HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"] // oExplorerBar.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"
oExplorerBar.Template = [HTMLPicture("pic2") = "c:\exontrol\images\auction.gif"] // oExplorerBar.HTMLPicture("pic2") = "c:\exontrol\images\auction.gif"
oExplorerBar.GroupHeight = 48
var_Group = oExplorerBar.Groups.Add("<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>")
	var_Group.Image = 2
	var_Group.CaptionFormat = 1
	var_Group.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\colorize.gif`)")
	var_Group.AddItem("Item 1")
	var_Group.AddItem("Item 2")
	var_Group.Expanded = true

59
How can I add several pictures and icons to a group

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.Template = [HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"] // oExplorerBar.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"
oExplorerBar.Template = [HTMLPicture("pic2") = "c:\exontrol\images\auction.gif"] // oExplorerBar.HTMLPicture("pic2") = "c:\exontrol\images\auction.gif"
oExplorerBar.GroupHeight = 48
// oExplorerBar.Groups.Add("<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>").CaptionFormat = 1
var_Group = oExplorerBar.Groups.Add("<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.CaptionFormat = 1]
endwith

58
How can I add several pictures to a group

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Template = [HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"] // oExplorerBar.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"
oExplorerBar.Template = [HTMLPicture("pic2") = "c:\exontrol\images\auction.gif"] // oExplorerBar.HTMLPicture("pic2") = "c:\exontrol\images\auction.gif"
oExplorerBar.GroupHeight = 48
var_Group = oExplorerBar.Groups.Add("<img>pic1</img> text <img>pic2</img>")
	var_Group.CaptionFormat = 1
	var_Group.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\colorize.gif`)")
	var_Group.AddItem("Item 1")
	var_Group.AddItem("Item 2")
	var_Group.Expanded = true

57
How can I add several pictures to a group

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Template = [HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"] // oExplorerBar.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"
oExplorerBar.Template = [HTMLPicture("pic2") = "c:\exontrol\images\auction.gif"] // oExplorerBar.HTMLPicture("pic2") = "c:\exontrol\images\auction.gif"
oExplorerBar.GroupHeight = 48
// oExplorerBar.Groups.Add("<img>pic1</img> text <img>pic2</img>").CaptionFormat = 1
var_Group = oExplorerBar.Groups.Add("<img>pic1</img> text <img>pic2</img>")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.CaptionFormat = 1]
endwith

56
How do I force refreshing the control
local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
var_Group = oExplorerBar.Groups.Add("Group 1")
	var_Group.Expanded = true
	var_Group.AddItem("Item 1")
oExplorerBar.Refresh()

55
How can show or hide the focus rectangle

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.ShowFocusRect = false
var_Group = oExplorerBar.Groups.Add("Group 1")
	var_Group.Expanded = true
	var_Group.AddItem("Item 1")

54
I've seen that the width of the tooltip is variable. Can I make it larger

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.ToolTipWidth = 328
// oExplorerBar.Groups.Add("ToolTip").ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group."
var_Group = oExplorerBar.Groups.Add("ToolTip")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group."]
endwith

53
How do I let the tooltip being displayed longer

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.ToolTipPopDelay = 10000
// oExplorerBar.Groups.Add("ToolTip").ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group."
var_Group = oExplorerBar.Groups.Add("ToolTip")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group."]
endwith

52
Can I change the default border of the tooltip, using your EBN files

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.ToolTipDelay = 1
oExplorerBar.ToolTipWidth = 364
oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oExplorerBar.Template = [Background(64) = 16777216] // oExplorerBar.Background(64) = 0x1000000
// oExplorerBar.Groups.Add("ToolTip").ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group."
var_Group = oExplorerBar.Groups.Add("ToolTip")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group."]
endwith

51
Can I change the background color for the tooltip

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.ToolTipDelay = 1
oExplorerBar.ToolTipWidth = 364
oExplorerBar.Template = [Background(65) = 255] // oExplorerBar.Background(65) = 0xff
// oExplorerBar.Groups.Add("ToolTip").ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group."
var_Group = oExplorerBar.Groups.Add("ToolTip")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group."]
endwith

50
Does the tooltip support HTML format

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.ToolTipDelay = 1
oExplorerBar.ToolTipWidth = 364
// oExplorerBar.Groups.Add("ToolTip").ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a <fgcolor=FF0000>group</fgcolor>"
var_Group = oExplorerBar.Groups.Add("ToolTip")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a <fgcolor=FF0000>group</fgcolor>"]
endwith

49
Can I change the forecolor for the tooltip

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.ToolTipDelay = 1
oExplorerBar.ToolTipWidth = 364
oExplorerBar.Template = [Background(66) = 255] // oExplorerBar.Background(66) = 0xff
// oExplorerBar.Groups.Add("ToolTip").ToolTip = "This is a bit of text that's shown when the cursor hovers the group."
var_Group = oExplorerBar.Groups.Add("ToolTip")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.ToolTip = "This is a bit of text that's shown when the cursor hovers the group."]
endwith

48
Can I change the foreground color for the tooltip

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.ToolTipDelay = 1
oExplorerBar.ToolTipWidth = 364
// oExplorerBar.Groups.Add("ToolTip").ToolTip = "<fgcolor=FF0000>This is a bit of text that's shown when the cursor hovers the group.</fgcolor>"
var_Group = oExplorerBar.Groups.Add("ToolTip")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.ToolTip = "<fgcolor=FF0000>This is a bit of text that's shown when the cursor hovers the group.</fgcolor>"]
endwith

47
Can I change the font for the tooltip

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.ToolTipDelay = 1
oExplorerBar.ToolTipWidth = 364
// oExplorerBar.Groups.Add("ToolTip").ToolTip = "<font Tahoma>This is a bit of text that's shown when the cursor hovers the group.</font> Back to the normal font"
var_Group = oExplorerBar.Groups.Add("ToolTip")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.ToolTip = "<font Tahoma>This is a bit of text that's shown when the cursor hovers the group.</font> Back to the normal font"]
endwith

46
Can I change the font for the tooltip

local oExplorerBar,var_Group,var_StdFont

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.ToolTipDelay = 1
var_StdFont = oExplorerBar.ToolTipFont
	var_StdFont.Name = "Tahoma"
	var_StdFont.Size = 14
oExplorerBar.ToolTipWidth = 364
// oExplorerBar.Groups.Add("ToolTip").ToolTip = "This is a bit of text that's shown when the cursor hovers the group."
var_Group = oExplorerBar.Groups.Add("ToolTip")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.ToolTip = "This is a bit of text that's shown when the cursor hovers the group."]
endwith

45
How do I disable showing the tooltip for all control
local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.ToolTipDelay = 0
// oExplorerBar.Groups.Add("ToolTip").ToolTip = "This is a bit of text that's shown when the cursor hovers the group."
var_Group = oExplorerBar.Groups.Add("ToolTip")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.ToolTip = "This is a bit of text that's shown when the cursor hovers the group."]
endwith

44
How do I show the tooltip quicker
local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.ToolTipDelay = 1
// oExplorerBar.Groups.Add("ToolTip").ToolTip = "This is a bit of text that's shown when the cursor hovers the group."
var_Group = oExplorerBar.Groups.Add("ToolTip")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.ToolTip = "This is a bit of text that's shown when the cursor hovers the group."]
endwith

43
How do I call your x-script language

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
var_Group = oExplorerBar.ExecuteTemplate("Groups.Add(`Group 1`)")
	var_Group.AddItem("Item 1")
	var_Group.Expanded = true

42
How do I call your x-script language

local oExplorerBar

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Template = "BackColor = RGB(255,0,0)"

41
How can I hide a tooltip when the item exceeds its area, so ... are displayed
local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.AllowTooltip = false
var_Group = oExplorerBar.Groups.Add("Group 1")
	var_Group.Expanded = true
	var_Group.AddItem("This isa very long text that should break the control in several pieces")

40
How can I show a tooltip when the item exceeds its area, so ... are displayed

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.AllowTooltip = true
var_Group = oExplorerBar.Groups.Add("Group 1")
	var_Group.Expanded = true
	var_Group.AddItem("This isa very long text that should break the control in several pieces")

39
How do I specify the distance between two groups

local oExplorerBar

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.BorderGroupHeight = 0
oExplorerBar.Groups.Add("Group 1")
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")

38
How can I change the expand / collapse buttons

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.Template = [ExpandIcon(True) = 1] // oExplorerBar.ExpandIcon(true) = 1
oExplorerBar.Template = [ExpandIcon(False) = 2] // oExplorerBar.ExpandIcon(false) = 2
var_Group = oExplorerBar.Groups.Add("Group 1")
	var_Group.AddItem("Item 1")
	var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()

37
How do I enable or disable the control
local oExplorerBar,var_Group,var_Item

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Enabled = false
var_Group = oExplorerBar.Groups.Add("Group 1")
	// var_Group.AddItem("Item 1").Image = 1
	var_Item = var_Group.AddItem("Item 1")
	with (oExplorerBar)
		TemplateDef = [dim var_Item]
		TemplateDef = var_Item
		Template = [var_Item.Image = 1]
	endwith
	var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")

36
How do I hide the icons in the right side of the group, the expand / collapse buttons

local oExplorerBar,var_Group,var_Item

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.BeginUpdate()
oExplorerBar.DisplayExpandIcon = false
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
var_Group = oExplorerBar.Groups.Add("Group 1")
	// var_Group.AddItem("Item 1").Image = 1
	var_Item = var_Group.AddItem("Item 1")
	with (oExplorerBar)
		TemplateDef = [dim var_Item]
		TemplateDef = var_Item
		Template = [var_Item.Image = 1]
	endwith
	var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()

35
Is there any option to stop using the hand shape cursor, when the cursor hovers an item
local oExplorerBar,var_Group,var_Item

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.BeginUpdate()
oExplorerBar.HandCursor = false
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.HighlightItemType = 0
var_Group = oExplorerBar.Groups.Add("Group 1")
	// var_Group.AddItem("Item 1").Image = 1
	var_Item = var_Group.AddItem("Item 1")
	with (oExplorerBar)
		TemplateDef = [dim var_Item]
		TemplateDef = var_Item
		Template = [var_Item.Image = 1]
	endwith
	var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()

34
How do I specify the color to highlight the item
local oExplorerBar,var_Group,var_Item

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.BeginUpdate()
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.HyperLinkColor = 0xff
oExplorerBar.HighlightItemType = 4
var_Group = oExplorerBar.Groups.Add("Group 1")
	// var_Group.AddItem("Item 1").Image = 1
	var_Item = var_Group.AddItem("Item 1")
	with (oExplorerBar)
		TemplateDef = [dim var_Item]
		TemplateDef = var_Item
		Template = [var_Item.Image = 1]
	endwith
	var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()

33
How can I expand or collapse a group when I click only its right icon
local oExplorerBar,var_Group,var_Item

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.BeginUpdate()
oExplorerBar.ExpandOnClick = false
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.HighlightItemType = 4
var_Group = oExplorerBar.Groups.Add("Group 1")
	// var_Group.AddItem("Item 1").Image = 1
	var_Item = var_Group.AddItem("Item 1")
	with (oExplorerBar)
		TemplateDef = [dim var_Item]
		TemplateDef = var_Item
		Template = [var_Item.Image = 1]
	endwith
	var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()

32
How do I remove the control's borders
local oExplorerBar,var_Group,var_Item

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.BeginUpdate()
oExplorerBar.Appearance = 0
oExplorerBar.BorderWidth = 0
oExplorerBar.BorderHeight = 0
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.HighlightItemType = 4
var_Group = oExplorerBar.Groups.Add("Group 1")
	// var_Group.AddItem("Item 1").Image = 1
	var_Item = var_Group.AddItem("Item 1")
	with (oExplorerBar)
		TemplateDef = [dim var_Item]
		TemplateDef = var_Item
		Template = [var_Item.Image = 1]
	endwith
	var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()

31
How do I specify width or the height of the control's borders
local oExplorerBar,var_Group,var_Item

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.BeginUpdate()
oExplorerBar.Appearance = 0
oExplorerBar.BorderWidth = 0
oExplorerBar.BorderHeight = 0
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.HighlightItemType = 4
var_Group = oExplorerBar.Groups.Add("Group 1")
	// var_Group.AddItem("Item 1").Image = 1
	var_Item = var_Group.AddItem("Item 1")
	with (oExplorerBar)
		TemplateDef = [dim var_Item]
		TemplateDef = var_Item
		Template = [var_Item.Image = 1]
	endwith
	var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()

30
How do I access the item from the point
local oExplorerBar

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject

29
How do I access the group from the point
local oExplorerBar

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject

28
How do I specify to highlight the items in the group, when the cursor hovers the item
local oExplorerBar,var_Group,var_Item

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.BeginUpdate()
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.HighlightItemType = 4
var_Group = oExplorerBar.Groups.Add("Group 1")
	// var_Group.AddItem("Item 1").Image = 1
	var_Item = var_Group.AddItem("Item 1")
	with (oExplorerBar)
		TemplateDef = [dim var_Item]
		TemplateDef = var_Item
		Template = [var_Item.Image = 1]
	endwith
	var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()

27
How do I specify to highlight the items in the group, when the cursor hovers the item
local oExplorerBar,var_Group,var_Item

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.BeginUpdate()
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.HighlightItemType = 3
var_Group = oExplorerBar.Groups.Add("Group 1")
	// var_Group.AddItem("Item 1").Image = 1
	var_Item = var_Group.AddItem("Item 1")
	with (oExplorerBar)
		TemplateDef = [dim var_Item]
		TemplateDef = var_Item
		Template = [var_Item.Image = 1]
	endwith
	var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()

26
How do I specify to highlight the items in the group, when the cursor hovers the item
local oExplorerBar,var_Group,var_Item

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.BeginUpdate()
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.HighlightItemType = 2
var_Group = oExplorerBar.Groups.Add("Group 1")
	// var_Group.AddItem("Item 1").Image = 1
	var_Item = var_Group.AddItem("Item 1")
	with (oExplorerBar)
		TemplateDef = [dim var_Item]
		TemplateDef = var_Item
		Template = [var_Item.Image = 1]
	endwith
	var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()

25
How do I specify to highlight the items in the group, when the cursor hovers the item
local oExplorerBar,var_Group,var_Item

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.BeginUpdate()
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.HighlightItemType = 1
var_Group = oExplorerBar.Groups.Add("Group 1")
	// var_Group.AddItem("Item 1").Image = 1
	var_Item = var_Group.AddItem("Item 1")
	with (oExplorerBar)
		TemplateDef = [dim var_Item]
		TemplateDef = var_Item
		Template = [var_Item.Image = 1]
	endwith
	var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()

24
How do I specify the way the control highlight the items in the group
local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.BeginUpdate()
oExplorerBar.HighlightItemType = 0
var_Group = oExplorerBar.Groups.Add("Group 1")
	var_Group.AddItem("Item 1")
	var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()

23
Is there any function to avoid painting the control while adding multiple items and groups
local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.BeginUpdate()
var_Group = oExplorerBar.Groups.Add("Group 1")
	var_Group.AddItem("Item 1")
	var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()

22
How do I decrease the delay to scroll a group
local oExplorerBar,var_Group,var_Group1

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.DelayScroll = 0
var_Group = oExplorerBar.Groups.Add("Group 1")
	var_Group.AddItem("Item 1")
	var_Group.Expanded = true
var_Group1 = oExplorerBar.Groups.Add("Group 2")
	var_Group1.AddItem("Item 2")
	var_Group1.Expanded = true

21
How do I display icons

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.SmallIcons = true
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
// oExplorerBar.Groups.Add("Group 1").Image = 1
var_Group = oExplorerBar.Groups.Add("Group 1")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.Image = 1]
endwith

20
How do I display 32x32 icons

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.SmallIcons = false
oExplorerBar.GroupHeight = 36
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
// oExplorerBar.Groups.Add("Group 1").Image = 1
var_Group = oExplorerBar.Groups.Add("Group 1")
with (oExplorerBar)
	TemplateDef = [dim var_Group]
	TemplateDef = var_Group
	Template = [var_Group.Image = 1]
endwith

19
How do I specify the height of the groups

local oExplorerBar

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.GroupHeight = 40
oExplorerBar.Groups.Add("Group 1")
oExplorerBar.Groups.Add("Group 2")

18
How do I change the visual appearance of the groups
local oExplorerBar

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.GroupAppearance = 1
oExplorerBar.Groups.Add("Group 1")
oExplorerBar.Groups.Add("Group 2")

17
How do I change the visual appearance of the groups, using your EBN files

local oExplorerBar

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oExplorerBar.BackColorGroup = 0x1000000
oExplorerBar.Groups.Add("Group 1")
oExplorerBar.Groups.Add("Group 2")

16
How do I change the background color for the groups
local oExplorerBar

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.BackColorGroup = 0xff
oExplorerBar.BackColorGroup2 = 0xff
oExplorerBar.Groups.Add("Group 1")

15
How do I change the background color for the groups

local oExplorerBar

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.BackColorGroup = 0xff
oExplorerBar.Groups.Add("Group 1")

14
How do I change the control's foreground color

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.ForeColor = 0xff0000
oExplorerBar.ForeColorGroup = 0xff
var_Group = oExplorerBar.Groups.Add("Group 1")
	var_Group.AddItem("Item 1")
	var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2")

13
How can I change the control's font

local oExplorerBar

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Font.Name = "Tahoma"
oExplorerBar.Groups.Add("Group 1")

12
How do I change the control's foreground color

local oExplorerBar,var_Group

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.ForeColor = 0xff
var_Group = oExplorerBar.Groups.Add("Group 1")
	var_Group.AddItem("Item 1")
	var_Group.Expanded = true

11
How do I change the control's background color

local oExplorerBar

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.BackColor = 0xc8c8c8

10
How do I change the control's border, using your EBN files

local oExplorerBar

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oExplorerBar.Appearance = 16777216 /*0x1000000 | */

9
How do I remove the control's border
local oExplorerBar

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Appearance = 0

8
How do I put a picture on the center of the control
local oExplorerBar

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oExplorerBar.PictureDisplay = 17

7
How do I resize/stretch a picture on the control's background
local oExplorerBar

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oExplorerBar.PictureDisplay = 49

6
How do I put a picture on the control's center right bottom side

local oExplorerBar

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oExplorerBar.PictureDisplay = 34

5
How do I put a picture on the control's center left bottom side
local oExplorerBar

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oExplorerBar.PictureDisplay = 32

4
How do I put a picture on the control's center top side
local oExplorerBar

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oExplorerBar.PictureDisplay = 1

3
How do I put a picture on the control's right top corner
local oExplorerBar

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oExplorerBar.PictureDisplay = 2

2
How do I put a picture on the control's left top corner
local oExplorerBar

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oExplorerBar.PictureDisplay = 0

1
How do I put a picture on the control's background
local oExplorerBar

oExplorerBar = form.EXPLORERBARACTIVEXCONTROL1.nativeObject
oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")